home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00088_dotsygma behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  1.0 KB  |  37 lines

  1. global oldText
  2.  
  3. on mouseEnter me
  4.   puppetSound(3, "over")
  5.   sprite(71).visible = 1
  6.   member("blurb").text = "Corbis Sygma is news. And history in the making. This remarkable collection includes millions of images of the people and events that have shaped our world over the past 150 years. Every day, 3,000 of these photographs are seen by more than 150 million people in the newspapers and magazines of 40 countries."
  7.   sprite(9).visible = 0
  8.   sprite(21).visible = 0
  9.   sprite(22).visible = 0
  10.   sprite(23).visible = 1
  11.   sprite(24).visible = 0
  12.   sprite(25).visible = 0
  13.   sprite(26).visible = 0
  14.   sprite(27).visible = 0
  15.   sprite(28).visible = 0
  16.   sprite(29).visible = 0
  17.   sprite(30).visible = 1
  18.   sprite(31).visible = 0
  19.   sprite(32).visible = 0
  20.   sprite(33).visible = 0
  21.   sprite(34).visible = 0
  22.   sprite(35).visible = 0
  23. end
  24.  
  25. on mouseLeave me
  26.   member("blurb").text = oldText
  27.   sprite(23).visible = 0
  28.   sprite(30).visible = 0
  29. end
  30.  
  31. on mouseUp me
  32.   puppetSound(2, "click")
  33.   oldText = member("blurb").text
  34.   sprite(30).visible = 0
  35.   go("sygma")
  36. end
  37.